
service NewService {
    rpc DoSomething (DoSomethingRequest) returns (DoSomethingResponse) {
    }
}

message DoSomethingRequest {
    string name = 1;
    int32 age = 2;
}
message DoSomethingResponse {
    string id = 1;
}
